ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / BatchOperatingData<T> Class / ItemsDeleted Property






In This Topic
    ItemsDeleted Property
    In This Topic
    The items being deleted.
    Syntax
    'Declaration
     
    
    <JsonConverterAttribute(C1.Web.Mvc.Serialization.PascalCaseJsonConverter)>
    Public Property ItemsDeleted As System.Collections.Generic.IList(Of T)
    'Usage
     
    
    Dim instance As BatchOperatingData(Of T)
    Dim value As System.Collections.Generic.IList(Of T)
     
    instance.ItemsDeleted = value
     
    value = instance.ItemsDeleted
    [JsonConverter(C1.Web.Mvc.Serialization.PascalCaseJsonConverter)]
    public System.Collections.Generic.IList<T> ItemsDeleted {get; set;}
    public read-write property ItemsDeleted: System.Collections.Generic.IList; 
    JsonConverterAttribute(C1.Web.Mvc.Serialization.PascalCaseJsonConverter)
    public function get,set ItemsDeleted : System.Collections.Generic.IList
    [JsonConverter(C1.Web.Mvc.Serialization.PascalCaseJsonConverter)]
    public: __property System.Collections.Generic.IList<T*>* get_ItemsDeleted();
    public: __property void set_ItemsDeleted( 
       System.Collections.Generic.IList<T*>* value
    );
    [JsonConverter(C1.Web.Mvc.Serialization.PascalCaseJsonConverter)]
    public:
    property System.Collections.Generic.IList<T^>^ ItemsDeleted {
       System.Collections.Generic.IList<T^>^ get();
       void set (    System.Collections.Generic.IList<T^>^ value);
    }
    See Also